github.com/andybalholm/brotli/matchfinder.M4.history (field)

13 uses

	github.com/andybalholm/brotli/matchfinder (current package)
		m4.go#L48: 	history []byte
		m4.go#L55: 	q.history = q.history[:0]
		m4.go#L82: 	if len(q.history) > q.MaxDistance*2 {
		m4.go#L84: 		delta := len(q.history) - q.MaxDistance
		m4.go#L85: 		copy(q.history, q.history[delta:])
		m4.go#L86: 		q.history = q.history[:q.MaxDistance]
		m4.go#L101: 	e.NextEmit = len(q.history)
		m4.go#L102: 	q.history = append(q.history, src...)
		m4.go#L106: 	src = q.history